home *** CD-ROM | disk | FTP | other *** search
- this.onEnterFrame = function()
- {
- this._y -= 2;
- this._y -= Math.random() * 4;
- if(this._y < 0)
- {
- this._visible = false;
- this.unloadMovie();
- }
- this._x += Math.random() * 4 - 2;
- };
- var temp = Math.random() * 0.6 + 0.6;
- this._xscale *= temp;
- this._yscale *= temp;
-